@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap");
@font-face {
  font-family: software-tester;
  src: url(software_tester.ttf);
}
@font-face {
  font-family: paladins;
  src: url(paladins.otf);
}
@font-face {
  font-family: hacked;
  src: url(hacked.ttf);
}
@font-face {
  font-family: teko;
  src: url(teko-medium.ttf);
}
@font-face {
  font-family: timeburner;
  src: url(timeburner.ttf);
}
@font-face {
  font-family: captain;
  src: url(captain.otf);
}
@font-face {
  font-family: proxima;
  src: url(proxima-medium.ttf);
}
@font-face {
  font-family: proxima-2;
  src: url(fontsfree-net-fontsfree-net-proxima-nova-black.ttf);
}
@font-face {
  font-family: proxima-3;
  src: url(fontsfree-net-fontsfree-net-proxima-nova-2.ttf);
}
@font-face {
  font-family: proxima-bold;
  src: url(proxima-bold.ttf);
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  font-family: "Josefins Sans", sans-serif;
  color: white;
  display: block;
  background-color: rgb(231, 15, 231);
  overflow: hidden;
}

.site-container {
  width: 100%;
  min-height: 100%;
}

section {
  min-height: 100%;
  min-width: 100%;
}

.sect-title {
  display: flex;
  width: 100%;
  min-height: 100%;
  padding: 0.6rem 0;
}

header {
  width: 100%;
  background-color: #fff;
  position: relative;
}
header #toggle {
  display: none;
}
header .sub-logo {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
header label {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0;
  color: violet;
  cursor: pointer;
  transition: transform 0.4s ease;
  right: 20px;
  position: absolute;
  margin-top: 15px;
}
header label::before {
  content: "≡";
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 5px;
}
header:has(#toggle:checked) label {
  transform: rotate(360deg);
}
header:has(#toggle:checked) label::before {
  content: "✕";
}
header .navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  border-bottom: 2px solid #57dae2;
}
header .logo img {
  height: auto;
  width: 90px;
}
header .links {
  display: flex;
  list-style: none;
  transition: all 0.4s ease;
  padding: 15px;
}
header .links a {
  display: block;
  font-size: 1rem;
  color: rgb(160, 0, 160);
  text-decoration: none;
  padding: 1.3rem;
  letter-spacing: 1px;
  position: relative;
}
header .links a::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 0%;
  top: 0;
  left: 0;
  background-color: #57dae2;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
header .links a:hover::after {
  width: 100%;
  opacity: 1;
}
header .sub-logo a {
  float: left;
  font-size: 2rem;
  margin-left: 1rem;
  color: white;
  text-decoration: none;
  font-family: hacked;
  letter-spacing: 2px;
}

#home h1 {
  color: white;
  text-align: center;
  font-size: 3rem;
  position: relative;
  letter-spacing: 1px;
}
#home .hero-container {
  width: 100%;
  margin: 0 auto;
}
#home .hero {
  background-image: url("../images/hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home .inner-container {
  margin: 0 auto;
  font-size: 2rem;
  letter-spacing: 3px;
  display: inline-block;
  animation: fadeIn 3s forwards;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
#home .inner-container h2 {
  animation: firstspan 3s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
#home .btn-container {
  text-align: center;
  padding: 1rem;
  display: flex;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  justify-content: center;
  gap: 2.5rem;
}
#home a {
  text-decoration: none;
}
#home button {
  display: block;
  font-weight: 400;
  color: #57dae2;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #57dae2;
  padding: 0.375rem 0.75rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 30px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 1rem;
  margin: 0 auto;
  min-width: 6vw;
}
#home button:hover {
  background-color: #57dae2;
  color: white;
}

#about {
  background-color: white;
}
#about h2 {
  font-size: 3.5rem;
  text-align: left;
  font-family: proxima-2;
  position: relative;
  padding: 0.8rem;
  color: rgb(231, 15, 231);
  width: 100%;
  text-align: left;
  letter-spacing: 1px;
}
#about h2::after {
  content: "";
  left: 0;
  bottom: 0px;
  height: 2px;
  background-color: rgb(231, 15, 231);
  text-align: left;
  position: absolute;
  width: 100%;
}
#about .container {
  width: 80%;
  padding: 1rem;
  min-height: 100%;
  margin: 0 auto;
  justify-content: center;
  height: 100%;
}
#about h4 {
  text-align: left;
  font-size: 2rem;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  padding: 0 1rem;
  letter-spacing: 2px;
  padding: 1rem;
  color: rgb(231, 15, 231);
}
#about .sub-container {
  width: 100%;
  text-align: left;
  padding: 1rem;
}
#about p {
  padding: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.6px;
  color: rgb(231, 15, 231);
}
#about .row {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  height: 100%;
}
#about .column {
  width: 100%;
  height: 100%;
}
#about .left {
  transform: translateX(-50%);
  display: flex;
  margin: 0 auto;
}
#about .right {
  transform: translateX(50%);
  text-align: center;
}
#about .left, #about .right {
  transition: all 2s;
  opacity: 0;
  padding: 1rem;
}
#about .left.appear, #about .right.appear {
  transform: translateX(0);
  opacity: 1;
}
#about img {
  width: 100%;
  height: auto;
  padding: 1rem;
}

#services .sect-title {
  background-color: white;
  clip-path: polygon(20% 0, 80% 0, 70% 100%, 30% 100%);
}
#services h2 {
  font-size: 3rem;
  text-align: center;
  font-family: proxima-2;
  position: relative;
  color: rgb(231, 15, 231);
  width: 100%;
  letter-spacing: 1px;
  margin: 1.5rem auto;
  padding: 0rem;
}
#services .sect-title {
  width: 100%;
  height: 100%;
}
#services .container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  z-index: 0;
  min-height: 100%;
}
#services .bottom {
  background-color: #121212;
  width: 100%;
}
#services .row {
  display: flex;
  width: 75%;
  margin: 0 auto;
  padding: 1rem;
  min-height: 100%;
  justify-content: center;
  gap: 1.5rem;
}
#services .row-bottom {
  display: flex;
  width: 50%;
  margin: 0 auto;
  padding: 1rem;
  gap: 1rem;
  height: 100%;
  justify-content: center;
}
#services .card {
  text-align: center;
  width: 100%;
  min-height: 100%;
  border-radius: 30px;
  z-index: 1;
  transform: scale(0);
  opacity: 0;
  transition: all 2s;
  transform: rotateY(90deg);
  margin: 0 auto;
}
#services .card.appear {
  transform: scale(1);
  opacity: 1;
}
#services .card-benefit {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
#services .body {
  padding: 0.5rem;
  font-size: 1.2rem;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
#services h3 {
  padding: 1rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  position: relative;
  font-family: proxima;
  color: #57dae2;
}
#services .image {
  width: 100%;
  text-align: center;
}
#services img {
  width: 25%;
}

#contact {
  background-color: #fff;
}
#contact .container {
  background-position: center;
  background-size: cover;
  color: black;
  position: relative;
  opacity: 1;
  z-index: 1;
  width: 75%;
  margin: 0 auto;
  min-height: 100%;
}
#contact h3 {
  color: rgb(231, 15, 231);
  margin: 1rem auto;
  font-size: 2rem;
  position: relative;
}
#contact h3::after {
  content: "";
  left: 0;
  bottom: 0px;
  height: 1px;
  background-color: #57dae2;
  position: absolute;
  width: 100%;
}
#contact h4 {
  color: rgb(231, 15, 231);
}
#contact .row {
  display: flex;
  opacity: 1;
}
#contact .column {
  min-width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contact .hours, #contact .email, #contact .number {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.6px;
  color: #57dae2;
  text-align: center;
}
#contact #fcf-form {
  display: block;
  margin: 5rem;
}
#contact .fcf-body {
  font-family: "Poppins", sans-serif;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  padding: 30px;
  border-radius: 20px;
  width: 100%;
}
#contact .fcf-form-group {
  margin-bottom: 1rem;
}
#contact .fcf-input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
#contact .fcf-form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  background-color: whitesmoke;
  background-clip: padding-box;
  outline: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border: 1px solid transparent;
}
#contact ::-webkit-input-placeholder {
  color: #444;
}
#contact .fcf-form-control:focus {
  border: 1px solid rgb(231, 15, 231);
}
#contact select.fcf-form-control[size], #contact select.fcf-form-control[multiple] {
  height: auto;
}
#contact textarea.fcf-form-control {
  font-family: -apple-system, Arial, sans-serif;
  height: auto;
}
#contact button {
  display: block;
  font-weight: 400;
  color: white;
  text-align: center;
  cursor: pointer;
  background-color: rgb(231, 15, 231);
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 1rem;
  margin: 0 auto;
}
#contact button:hover {
  background-color: white;
  color: rgb(231, 15, 231);
  border: 1px solid rgb(231, 15, 231);
}
#contact .map-container {
  width: 100%;
  min-height: 35vh;
  border-top: 2px solid #57dae2;
  border-bottom: 2px solid #57dae2;
}
#contact iframe {
  height: 35vh;
  width: 100%;
}

footer img {
  height: 200px;
  width: auto;
}
footer .container {
  background-color: rgb(231, 15, 231);
  width: 100%;
  padding: 3rem;
  color: white;
}
footer .row {
  display: flex;
}
footer ul {
  list-style: none;
}
footer .footer-col {
  width: 100%;
  padding: 0 15px;
  letter-spacing: 3px;
}
footer h4 {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
footer h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #57dae2;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
footer ul li:not(:last-child) {
  margin-bottom: 10px;
}
footer address {
  padding-bottom: 1rem;
}
footer a {
  font-size: 1rem;
  text-transform: capitalize;
  color: snow;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
footer ul li a:hover {
  color: #57dae2;
}
footer .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: snow;
  transition: all 0.5s ease;
}
footer .social-links a:hover {
  color: #57dae2;
}

@media (max-width: 1100px) {
  #about h2 {
    font-size: 3.2rem;
  }
  #about p {
    font-size: 1rem;
  }
  #services h2 {
    font-size: 1.8rem;
  }
  #services .row {
    width: 90%;
  }
  #contact .column {
    min-width: 100%;
  }
}
@media (max-width: 1000px) {
  footer .container {
    padding: 2rem;
  }
  footer .row {
    display: block;
  }
  footer .footer-col {
    margin-top: 2rem;
  }
}
@media (max-width: 931px) {
  #home h1 {
    font-size: 1.9rem;
  }
  header {
    position: relative;
    background-color: #fff;
  }
  header .logo {
    display: relative;
  }
  header .logo img {
    position: absolute;
    top: 0;
    height: 80px;
    width: auto;
  }
  header label {
    display: flex;
  }
  header #toggle {
    display: none;
  }
  .navbar .links {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, max-height 0.4s ease;
    margin-top: 20px;
  }
  .navbar .links a {
    font-size: 1rem;
    padding: 0.7rem;
    margin-top: 10px;
  }
  header #toggle:checked + .navbar .links {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }
  #about .container {
    width: 100%;
    display: block;
  }
  #about .row {
    height: 100%;
  }
  #about .sub-container {
    height: 100%;
    width: 100%;
  }
  #about h2 {
    font-size: 2.5rem;
  }
  #services .body {
    width: 75%;
  }
}
@media (max-width: 760px) {
  #about .row {
    display: block;
  }
  #services .row {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  #services .card {
    margin-bottom: 1rem;
    margin-left: 0px;
    width: 100%;
  }
  #contact .row {
    flex-direction: column;
  }
  #contact .column {
    min-width: 100%;
  }
  #contact #fcf-form {
    margin: 1rem;
  }
}
@media (max-width: 300px) {
  #home h1 {
    font-size: 1.9rem;
  }
  #about h2 {
    font-size: 2rem;
  }
  #about h4 {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
  #services h2 {
    font-size: 1.2rem;
  }
  #contact h3 {
    font-size: 1.2rem;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transition-timing-function: scale(1);
  }
  50% {
    opacity: 1;
    transition-timing-function: scale(1);
  }
  100% {
    opacity: 1;
    transition-timing-function: scale(1);
  }
}/*# sourceMappingURL=style.css.map */